home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 7248 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.6 KB

  1. Path: kermes.hrz.ba-freiberg.de!news
  2. From: F.Wirbeleit <wirbel@physik.tu-freiberg.de>
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: Multidimensional Arrays
  5. Date: 22 Feb 1996 06:53:49 GMT
  6. Organization: BA Freiberg
  7. Message-ID: <4gh3tt$soi@kermes.hrz.tu-freiberg.de>
  8. NNTP-Posting-Host: jarrett.exphys.tu-freiberg.de
  9.  
  10. fradin68@futures.wharton.upenn.edu (Russell Fradin) schreibt:
  11. > How can I dynamically allocate a 2 dimensional array of integers?
  12. > I tried
  13. > int **t;
  14. > t = new int[dimension1*dimension2]
  15. > and looked everywhere, please help!
  16. > Russ
  17. > fradin68@wharton.upenn.edu
  18.  
  19.  
  20. An object orientated matrix library, applicable in your own C++
  21. programms, has been created an used in the last 2 years in
  22. my simulation program and in the programs of friends and is
  23. recommended for storing and organizing data arrays of int (long), float, double
  24. long double and complex values. This module handels data arrays and
  25. multidimensional arrays of matrixces of any size you like in a easy way
  26. and performs common matrix calculations,such as linear equation systems,
  27. eigenvalues/ -vectors an all common operators (+, -, *, transp.).
  28.  
  29. Please feel so free an contact the e-mail adress below for more information. 
  30. You can get the version for micrososft visual c++ version 1.0 or borland c++ 
  31. version 2.0 by sending a HD-disk (1.44 MByte) with a return cover to the 
  32. adress below, because the files are not uploaded on a ftp server. 
  33. The source code is written by ANSI C++ (besides the alloc-functions)
  34. and is also available by the autor. 
  35.  
  36.  
  37. contact:
  38. Frank Wirbeleit
  39. Wurzener Str. 31
  40. 01127 Dresden
  41. Germany 
  42.  
  43. e-mail:
  44. wirbel@physik.tu-freiberg.de
  45.   
  46. Frank
  47.  
  48.